home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJLSR111.ZIP / libsrc / c / dos / setdisk.c < prev    next >
C/C++ Source or Header  |  1993-11-12  |  154b  |  10 lines

  1. /* setdisk.c for gppdir routines by pjbk */
  2. #include <dir.h>
  3. #include <dos.h>
  4.  
  5. int setdisk(int drive)
  6. {
  7.   return bdos(0x0E, drive, 0) & 0xff;
  8. }
  9.  
  10.